home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / aux_manifest_array3.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  441 b   |  27 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class AUX_MANIFEST_ARRAY3
  5.    
  6. creation make
  7.    
  8. feature {NONE}
  9.    
  10.    list: ARRAY[STRING];
  11.      -- The contents of the aux_manifest_array3.
  12.    
  13. feature 
  14.    
  15.    make(l: ARRAY[STRING]) is
  16.       require
  17.      l /= Void;
  18.      not l.empty;
  19.       do
  20.      list := l;
  21.       ensure
  22.      list = l;
  23.       end;
  24.    
  25. end -- AUX_MANIFEST_ARRAY3
  26.  
  27.